home *** CD-ROM | disk | FTP | other *** search
- package sun.awt.windows;
-
- import netscape.applet.NEvent;
- import sun.awt.ObjectPeer;
-
- class StandardGUIEvent extends NEvent {
- int pNativeData;
- ObjectPeer peer;
-
- public StandardGUIEvent(int var1, ObjectPeer var2) {
- super(20);
- this.peer = var2;
- this.pNativeData = var1;
- }
-
- public native void processEvent();
-
- public Object getTarget() {
- return this.peer;
- }
-
- protected void finalize() {
- this.dispose();
- }
-
- native void dispose();
- }
-